d5ba6d6524bcd33821b02b4bff040a13604ae5bf,core/baseLanguage/collections/runtime/source_gen/jetbrains/mps/internal/collections/runtime/impl/ComparingSequence.java,ComparingIterator,next,#,59
Before Change
public U next() {
if (hasNext.unknown()) {
init();
moveToNext();
}
if (!((hasNext.hasNext()))) {
throw new NoSuchElementException();
After Change
}
public U next() {
if (leftIt == null || rightIt == null) {
init();
}
if (hasNext.unknown()) {
moveToNext();
}
if (!((hasNext.hasNext()))) {
throw new NoSuchElementException();
}
return this.clearNext();
}
public void remove() {